home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PLineStyle.cpp ------------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Sun, Oct 22, 1995 @ 4:19 PM by Paul Ferguson.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PLineStyle.html
- *-------------------------------------------------------------------------
- */
-
- #include "PLineStyle.h"
- #include "PCommand.h"
-
- const size_t REQUEST_SIZE = 8;
-
- PLineStyle::PLineStyle(short cLineStyle, short bReverse, short dWeight, short bOpaque)
- {
- short x[4];
- x[0] = cLineStyle;
- x[1] = bReverse;
- x[2] = dWeight;
- x[3] = bOpaque;
- PCommand command(pm_linestyle, x, REQUEST_SIZE);
- }
-
- // end of PLineStyle.cpp
-